home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Reverse Code Engineering RCE CD +sandman 2000
/
ReverseCodeEngineeringRceCdsandman2000.iso
/
RCE
/
Tools
/
TASM V5
/
WAP.PAK
/
MAKEFILE
next >
Wrap
Text File
|
1996-02-21
|
654b
|
32 lines
# Make file for Turbo Assembler WAP example.
# Copyright (c) 1996 by Borland International, Inc.
# make -B Will build wap.exe
# make -B -DDEBUG Will build the debug version of wap.exe
NAME = WAP
OBJS = $(NAME).obj
DEF = $(NAME).def
!if $d(DEBUG)
TASMDEBUG=/zi
LINKDEBUG=/v
!else
TASMDEBUG=
LINKDEBUG=
!endif
!if $d(MAKEDIR)
IMPORT=$(MAKEDIR)\..\lib\import
THEINCLUDE=/i$(MAKEDIR)\..\include
!else
IMPORT=import
THEINCLUDE=
!endif
$(NAME).EXE: $(OBJS) $(DEF)
tlink /Twe $(LINKDEBUG) $(OBJS),$(NAME),, $(IMPORT), $(DEF)
.asm.obj:
tasm $(TASMDEBUG) /ml $(THEINCLUDE) $&.asm